home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pstoepsi.zip / MAKEFILE next >
Text File  |  1992-01-03  |  302b  |  14 lines

  1. PBM_ROOT=/where_the_root_of_pbmplus_is
  2.  
  3. pbmtoepsi: pbmtoepsi.o
  4.     cc -o pbmtoepsi -L$(PBM_ROOT)/pbm pbmtoepsi.o -O -lpbm
  5.  
  6. pbmtoepsi.o: pbmtoepsi.c
  7.     cc -c -O -I$(PBM_ROOT) -I$(PBM_ROOT)/pbm pbmtoepsi.c
  8.  
  9. install: pbmtoepsi
  10.     install -c -s pbmtoepsi /usr/local/bin/X11/pbmtoepsi
  11.  
  12. clean:
  13.     rm -f *.o pbmtoepsi
  14.